home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000269_news@columbia.edu _Tue May 2 16:07:15 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id QAA05862
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 2 May 2000 16:07:06 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA26476
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 2 May 2000 16:07:01 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id QAA28426
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 2 May 2000 16:02:48 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jrd@cc.usu.edu (Joe Doupnik)
  13. Subject: Re: Making cursor invisible
  14. Message-ID: <wiWIY2i9VKeu@cc.usu.edu>
  15. Date: 2 May 00 13:55:37 MDT
  16. Organization: Utah State University
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <8en5bh$mf4$1@newsmaster.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  20. > In article <390f169e.837413411@news.bellglobal.com>,
  21. > Gord Shier <shier@shorcan.com> wrote:
  22. > : On Tue, 02 May 2000 08:21:05 +0100, Paul Williams <flo@rdel.co.uk> wrote:
  23. > : >Gord Shier wrote:
  24. > : >> I am using VT220 emulation, and I would like to make the
  25. > : >> cursor invisible using the terminfo 'civis' string, which is
  26. > : >> '\E[?25h', according to my vt220 listing.  Sadly, this doesn't work.
  27. > : >> Is there an escape sequence that I can send to hide the cursor?
  28. > : >
  29. > : >You've been making the cursor visible. '\E[?25l' (that's a lowercase ell
  30. > : >on the end) will make the cursor invisible.
  31. > : 
  32. > : Unfortunately, that was merely a typing mistake in my message, not in
  33. > : what I was doing.  I have been using the 'l'.  I've tried it from
  34. > : little scripts, as well as doing 'tput civis' and 'tput cnorm' which
  35. > : extract the appropriate sequences from my terminfo db.  Nothing works
  36. > : so far.
  37. > : 
  38. > Apparently MS-DOS Kermit does not support this escape sequence.
  39. >
  40.     Yes, it does support ESC [ ? 25 h and l. Please see MSK document
  41. msvibm.vt which describes all the control sequences supported by MSK.
  42.     Joe D.
  43.  
  44. > If you are using MS-DOS Kermit on Windows 95/98/NT/2000, you can switch
  45. > to Kermit 95, which does support it:
  46. >   http://www.columbia.edu/kermit/k95.html
  47. > - Frank